be3edbfbe79f1bbc0ff7e198a0de3dbf9766d6e2,core/src/main/java/org/dcache/nfs/v4/OperationSETCLIENTID_CONFIRM.java,OperationSETCLIENTID_CONFIRM,process,#CompoundContext#nfs_resop4#,41

Before Change



        Long clientid = _args.opsetclientid_confirm.clientid.value;

        NFS4Client client = context.getStateHandler().getClientByID(clientid);
        if (client == null) {
            throw new StaleClientidException();
        }

After Change



        final SETCLIENTID_CONFIRM4res res = result.opsetclientid_confirm;

        NFS4Client client = context.getStateHandler().getClientByID(_args.opsetclientid_confirm.clientid);
        if (client == null) {
            throw new StaleClientidException();
        }